/* Table of Contents
----------------------------------

0- Global CSS
1- Heading CSS
2- Button CSS
3- Menubar CSS
4- Sidebar Area CSS
5- Home Area CSS
6- About Area CSS
7- Skills Area CSS
8- Experience Area CSS 
9- Editions Area CSS
10- Portfolio Area CSS
11- Blog Area CSS
12- Contact Area CSS
13- Scroll-Top Area CSS

*/



/*--------------------- 0- Global CSS (Start) ---------------------*/

:root{
    --yellow: #DBA501;
	--lime: #9DC410;
	--green: #617600;
	--grey: #1a1a1a;
	--main: #EAEAD7;
	--blue: #5386E4;
	--white: #FFFFFF;
	
}	

*{ 
	font-family: sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    outline: none;
    transition-property: none;
}

*::selection{
    color: #fff;
    background-color: var(--yellow);
}

html{
    font-size: 1rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body{
    background-color: #111;
	font-size: 1rem;
    color: var(--main);
}

section{
    padding: 2rem 5%;
}

::-webkit-scrollbar{
    width: 0.8rem;
}

::-webkit-scrollbar-thumb{
    border-radius: 1rem;
    background-color: #f9ca24;
}

::-webkit-scrollbar-track{
    background:#222;
}

a{
	color: var(--yellow);
}

a:hover{
	color: var(--lime);
}

ul,ol {
  margin-left: 0;
  padding-left: 40px;
}


strong {
	color: var(--white);
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.footer {
	padding-top : 40px;
	font-size : 0.8rem;
}

.programme table, .programme th, .programme td{
    border: 1px solid var(--main);
	border-collapse: collapse;
	text-align: center;
	padding: 10px;
}

.programme td:first-child {
	width : 7em;
	height : 2em;
}

.programme td:nth-child(2) {
	minimum-width : 20em;
	maximum-width : 40em;
	}

h3{
    color: var(--yellow);
    font-size: 1.5rem;
    position: relative;
	margin-bottom: -1rem;
}




/*--------------------- 0- Global CSS (End) ---------------------*/



/*--------------------- 1- Heading CSS (Start) ---------------------*/
.heading{
    margin: 2rem 0rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2rem;
	font-family: 'sage-sans-regular', sans-serif;
}

.heading h2{
    color: var(--lime);
    font-size: 2rem;
    position: relative;
}

/*Pour soulignager les sous-titres*/
.heading h2::before{
    content: '';
    position: absolute;
    bottom: -0.5rem; left: 0;
    background: var(--green);
    height: 0.2rem;
    width: 100%;
}

/*--------------------- 1- Heading CSS (End) ---------------------*/



/*--------------------- 9- Editions Area CSS (Start) ---------------------*/
.box-container{
    display: flex;
    flex-align: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.edition-item{
    flex: 1 1 46%;
	max-width: 46%;
    border: 0.1rem solid var(--main);
    padding: 1rem 1rem;
    border-radius: 0.5rem;
    margin: 0.5rem;
	align-self: stretch;
}

/*
.edition-item:hover{
    border-color: #f9ca24;
}
*/

.edition-item h3{
    font-size: 2rem;
    color: #fff;
    padding: 1.5rem 0;
}

.edition-item p{
    font-size: 1.6rem;
    color: #999;
    line-height: 1.6;
}

.edition-item h4{
    color: var(--yellow);
    font-size: 1.2rem;
    position: relative;
	text-align: center;
	margin-bottom: 1rem;
}



/*--------------------- 13- Scroll-Top (Start) ---------------------*/
.scroll-top{
    position: fixed;
    bottom: 1rem;
    right:1rem;
    height: 2rem;
    width: 2rem;
    font-size: 3rem;
    font-weight:lighter;
    background: #111;
    color: var(--yellow);
    border: 0.2rem solid var(--yellow);
    border-radius: 50%;
    z-index: 999;
    display: flex;
    justify-content: center;
    flex-align: center;
  }

  .scroll-top:hover{
    background: var(--yellow);
    color:#fff;
  }

  /*--------------------- 13- Scroll-Top (End) ---------------------*/
  
  
  /*---------------------- Details (Start) ---------------------*/
.details{
	margin-top: 1rem;
    margin-left: 2rem;
	margin-bottom: 2rem;
}
.details h4{
	margin-bottom: 0.2rem;
	color: var(--lime);
	font-size:1.2rem;
}

.details h5{
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	font-size:1rem;
	color: var(--white);
}
/*---------------------- Details (End) ---------------------*/